home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / Mac_F2C_1.3.2.sit / Mac F2C 1.3.2 / Mac F2C Libraries / libF77 Sources / r_lg10.c < prev    next >
C/C++ Source or Header  |  1995-01-28  |  212b  |  16 lines

  1. #include "f2c.h"
  2.  
  3. #define log10e 0.43429448190325182765
  4.  
  5. #ifdef KR_headers
  6. double log();
  7. double r_lg10(x) real *x;
  8. #else
  9. #undef abs
  10. #include "math.h"
  11. double r_lg10(real *x)
  12. #endif
  13. {
  14. return( log10e * log(*x) );
  15. }
  16.